home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 41 / CD Expert nº 41.iso / DReign2 / DR2Demo.exe / data1.cab / Files / missions / demo / Demo Mission 2.zwp / objective_you_lost.cfg < prev    next >
Encoding:
Text File  |  2000-09-01  |  462 b   |  30 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 1997-99 Pandemic Studios
  4. //
  5. // Dark Reign II
  6. //
  7.  
  8. CreateObjectType("objective_you_lost", "Objective")
  9. {
  10.   GameObj();
  11.   ObjectiveObj()
  12.   {
  13.     Condition("HaveType")
  14.     {
  15.      Team("JDA");
  16.      Type("*")
  17.      {
  18.       Amount(0);
  19.       Operator("==");
  20.      }
  21.     }
  22.  
  23.     Action()
  24.     {
  25.       NewObjective("cineractive_you_lost");
  26.     }
  27.   }
  28. }
  29.  
  30.